home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MultiSession 1.04 Source / Core 27⁄June⁄1993 / CDocument.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-04  |  250 b   |  16 lines  |  [TEXT/KAHL]

  1. /* CDocument.h */
  2.  
  3. #pragma once
  4.  
  5. #include "EventLoop.h"
  6.  
  7. struct    CDocument    :    CIdle
  8.     {
  9.         /* */            CDocument();
  10.         /* */            ~CDocument();
  11.         void            DoNewFile(void);
  12.         void            DoOpenFile(FSSpec* TheSpec);
  13.         void            DoPrint(void);
  14.         MyBoolean    GoAway(void);
  15.     };
  16.